home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-06-18 | 322 b | 15 lines | [TEXT/ttxt] |
- //-------------------------------------------------------------------//
-
- // Syntax: acosh ( X )
-
- // Description:
-
- // Acosh is the inverse hyperbolic cosine of the element(s) of X.
-
- //-------------------------------------------------------------------//
-
- acosh = function ( x )
- {
- return log (x + sqrt (x.^2 - 1));
- };
-